home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / fractal / kaos.lha / intlib / int_option_proc.c < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-18  |  291 b   |  19 lines

  1. /*
  2. ### procedure for selecting an integration option ###
  3. */
  4.  
  5. #include <suntool/sunview.h>
  6. #include <suntool/panel.h>
  7.  
  8. void 
  9. int_option_proc(item,value,event)
  10. Panel_item      item;
  11. int             value;
  12. Event          *event;
  13. {
  14.         extern int int_option;
  15.         int_option = value;
  16. }
  17.  
  18.  
  19.